* The number of variables in this context.
*/
public int getLength() {
return json.get("length").getAsInt();
}
/**
* The number of variables in this context.
*/
public int getLength() {
return json.get("length") == null ? -1 : json.get("length").getAsInt();
}
/**